:root {
  --primary: #fbff00; /* Electric Yellow */
  --bg: #000000;
  --card-bg: #0a0a0a;
}

body {
  background: var(--bg);
  color: white;
  font-family: "Inter", sans-serif;
  cursor: none;
  overflow-x: hidden;
}

/* Custom Cursor */
.cursor {
  width: 25px;
  height: 25px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
}

/* Global Elements */
.py-100 {
  padding: 60px 0;
}
.text-primary {
  color: var(--primary) !important;
}
.fw-black {
  font-weight: 900;
}

/* Navbar */
.navbar {
  padding: 30px 0;
  transition: 0.5s;
  z-index: 999;
}
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.9);
  padding: 15px 0;
}
.navbar-brand {
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  color: white !important;
}
.navbar-brand span {
  color: var(--primary);
}
.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 30px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  transition: 0.3s;
}
.nav-links a:hover {
  color: var(--primary);
}

.btn-main-sm {
  background: var(--primary);
  color: black;
  padding: 10px 20px;
  font-weight: 900;
  text-decoration: none;
  border-radius: 0px;
}


/* Hamburger */
.hamburger {
  width: 28px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  height: 2px;
  width: 100%;
  background: #fff;
}

/* Mobile Menu */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transform: translateY(-100%);
}

.mobile-nav a {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.mobile-cta {
  margin-top: 20px;
  padding: 14px 40px;
  border: 1px solid var(--primary);
  color: var(--primary);
}



/* CLOSE BUTTON */
.mobile-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.mobile-close span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}

.mobile-close span:first-child {
  transform: rotate(45deg);
}

.mobile-close span:last-child {
  transform: rotate(-45deg);
}



















/* about  hero section  */

.about-hero-cinematic {
  height: 100vh;
  width: 100%;
  display: flex;
  background: #000;
}

.hero-panel {
  width: 50%;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

/* Left Panel Styling */
.left-panel {
  background: #050505;
  border-right: 1px solid rgba(251, 255, 0, 0.1);
}

.eyebrow-text {
  font-family: "Syncopate", sans-serif;
  color: var(--primary);
  font-size: 0.8rem;
  letter-spacing: 5px;
}

.hero-title-split {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -2px;
}

.reveal-text {
  display: inline-block;
  overflow: hidden;
}

.hero-line {
  width: 0;
  height: 2px;
  background: var(--primary);
}

/* Right Panel Styling */
.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.6);
  transform: scale(1.3);
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #050505 0%, transparent 100%);
  z-index: 1;
}

/* Floating Elements */
.center-meta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  mix-blend-mode: difference;
}

.meta-box {
  border: 1px solid var(--primary);
  padding: 20px;
  color: #fff;
  font-family: "Syncopate", sans-serif;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
  color: #444;
  font-size: 0.7rem;
  letter-spacing: 3px;
}

.hero-scroll-indicator .line {
  width: 1px;
  height: 50px;
  background: #333;
  margin: 0 auto 15px;
}

/* =================================
   MOBILE HERO — SHORT & STRONG
   ================================= */

@media (max-width: 768px) {
  .about-hero-cinematic {
    height: 85vh;
    flex-direction: column;
    position: relative;
    background: #050505;
  }

  /* IMAGE AS BACKGROUND LAYER */
  .right-panel {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
  }

  .hero-main-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(0.4);
    transform: scale(1);
  }

  .hero-image-overlay {
    background: linear-gradient(
      180deg,
      rgba(5, 5, 5, 0.95) 0%,
      rgba(5, 5, 5, 0.7) 40%,
      rgba(5, 5, 5, 0.95) 100%
    );
  }

  /* TEXT CONTENT */
  .left-panel {
    width: 100%;
    height: 100%;
    z-index: 2;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
  }

  .panel-content {
    padding: 120px 20px 40px !important;
  }

  .eyebrow-text {
    font-size: 0.65rem;
    letter-spacing: 4px;
  }

  .hero-title-split {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -1px;
  }

  .hero-line {
    display: none;
  }

  /* REMOVE FLOATING ELEMENTS */
  .center-meta,
  .hero-scroll-indicator {
    display: none;
  }
}

/* ===============================
   FULL WIDTH ORIGIN SECTION
   =============================== */

.origin-full {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(circle at left, #0a0a0a, #050505 70%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* BIG BACKGROUND TEXT */
.origin-bg-text {
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
  font-size: clamp(10rem, 22vw, 26rem);
  font-weight: 900;
  letter-spacing: -12px;
  color: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

/* LAYOUT */
.origin-row {
  width: 100%;
  min-height: 100vh;
}

.origin-left {
  padding: 120px 8vw;
  z-index: 2;
}

.origin-right {
  position: relative;
  overflow: hidden;
}

/* EYEBROW */
.origin-eyebrow {
  font-family: "Syncopate", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: var(--primary);
  display: block;
  margin-bottom: 25px;
}

/* TITLE */
.origin-title {
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 25px;
}

/* TEXT */
.origin-description {
  max-width: 480px;
  color: #aaa;
  font-size: 1rem;
  line-height: 1.8;
}

/* DIVIDER */
.origin-divider {
  width: 90px;
  height: 2px;
  background: var(--primary);
  margin: 45px 0;
}

/* STATS */
.origin-stats {
  display: flex;
  gap: 60px;
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: #777;
}

/* RIGHT SIDE ENERGY */
.origin-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(251, 255, 0, 0.1),
    rgba(251, 255, 0, 0.1) 1px,
    transparent 1px,
    transparent 70px
  );
  opacity: 0.25;
}

/* MOBILE */
@media (max-width: 991px) {
  .origin-lines {
    display: none;
  }
  .origin-full {
    min-height: auto;
  }

  .origin-row {
    min-height: auto;
  }

  .origin-left {
    padding: 120px 30px;
  }

  .origin-right {
    /* height: 300px; */
  }

  .origin-bg-text {
    display: none;
  }

  .origin-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
}

/* ===============================
   METHOD SECTION
   =============================== */

.method-section {
  background: #050505;
  padding: 20px 20px;
}

/* HEADER */
.method-header {
  text-align: center;
  margin-bottom: 100px;
}

.method-eyebrow {
  font-family: "Syncopate", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: var(--primary);
  display: block;
  margin-bottom: 20px;
}

.method-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

/* GRID */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding: 0 8vw;
}

/* CARD */
.method-card {
  border-top: 2px solid rgba(251, 255, 0, 0.4);
  padding-top: 40px;
}

.method-index {
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--primary);
  display: block;
  margin-bottom: 15px;
}

.method-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.method-card p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* MOBILE */
@media (max-width: 991px) {
  .method-section {
    padding: 10px 0;
  }

  .method-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 30px;
  }

  .method-header {
    margin-bottom: 70px;
  }
}

/* ===============================
   PROGRAMS — REDESIGNED
   =============================== */

.programs-redesign {
  position: relative;
  background: radial-gradient(circle at top, #0b0b0b, #000 70%);
  padding: 40px 0 100px; /* tighter spacing */
  overflow: hidden;
}

/* BACKGROUND WORD */
/* .programs-bg-text {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(7rem, 18vw, 20rem);
  font-weight: 900;
  letter-spacing: -10px;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  white-space: nowrap;
} */

/* WRAPPER */
.programs-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6vw;
  position: relative;
  z-index: 2;
}

/* HEADER */
.programs-header {
  text-align: center;
  /* margin-bottom: 60px; */
}

.programs-eyebrow {
  font-family: "Syncopate", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: var(--primary);
  display: block;
  margin-bottom: 16px;
}

.programs-title {
  font-size: clamp(3rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  color: #fff;
}

/* CARDS GRID */
.programs-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  perspective: 1000px;
}

/* CARD */
.program-card {
  position: relative;
  padding: 52px 34px 46px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition: transform 0.45s ease, border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.program-card:hover {
  transform: translateY(-10px);
  border-color: rgba(251, 255, 0, 0.6);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

/* NUMBER */
.program-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3.6rem;
  font-weight: 900;
  color: rgba(251, 255, 0, 0.2);
}

/* TEXT */
.program-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.program-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #aaa;
}

/* MOBILE */
@media (max-width: 991px) {
  .programs-redesign {
    padding: 120px 0;
  }

  .programs-header {
    /* margin-bottom: 40px; */
  }

  .programs-cards {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* .programs-bg-text {
    display: none;
  } */
}

/* ===============================
   FINAL CTA — STRONG ENDING
   =============================== */

.final-cta {
  position: relative;
  background: linear-gradient(180deg, #050505, #000);
  padding: 90px 0 60px; /* tight, intentional */
  overflow: hidden;
}

/* BIG BACKGROUND WORD */
.cta-bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(8rem, 20vw, 22rem);
  font-weight: 900;
  letter-spacing: -12px;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
}

/* INNER */
.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 6vw;
  position: relative;
  z-index: 2;
}

/* EYEBROW */
.cta-eyebrow {
  font-family: "Syncopate", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: var(--primary);
  display: block;
  margin-bottom: 18px;
}

/* TITLE */
.cta-title {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 26px;
}

/* TEXT */
.cta-text {
  max-width: 620px;
  margin: 0 auto 42px;
  font-size: 1rem;
  line-height: 1.8;
  color: #aaa;
}

/* ACTIONS */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* BUTTONS */
.cta-btn {
  padding: 16px 40px;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-decoration: none;
  border: 1px solid var(--primary);
  transition: all 0.35s ease;
}

.cta-btn.primary {
  background: var(--primary);
  color: #000;
}

.cta-btn.primary:hover {
  background: transparent;
  color: var(--primary);
}

.cta-btn.secondary {
  background: transparent;
  color: var(--primary);
}

.cta-btn.secondary:hover {
  background: var(--primary);
  color: #000;
}

/* MOBILE */
@media (max-width: 768px) {
  .final-cta {
    padding: 30px 0 50px;
  }

  .cta-bg-word {
    display: none;
  }

  .cta-actions {
    gap: 18px;
  }
}

/* ====================
   SIMPLE FOOTER STYLES
   ==================== */

.footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

/* Footer Logo */
.footer-brand {
  font-family: "Syncopate", sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: white;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.footer-brand span {
  color: var(--primary);
}

.footer-brand:hover {
  transform: scale(1.05);
}

/* Navigation Links */
.footer-nav .nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.footer-nav .nav-links a {
  color: #888;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.3s;
  position: relative;
}

.footer-nav .nav-links a:hover {
  color: var(--primary);
}

.footer-nav .nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s;
}

.footer-nav .nav-links a:hover::after {
  width: 100%;
}

/* Social Icons */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  font-size: 1.1rem;
}

.social-icon:hover {
  background: var(--primary);
  color: black;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(251, 255, 0, 0.2);
}

/* Contact Info */
.contact-info {
  color: #888;
  font-size: 0.9rem;
}

.contact-item {
  padding: 5px 0;
}

.contact-item i {
  font-size: 0.9rem;
}

/* Footer Divider */
.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  max-width: 200px;
}

/* Copyright & Legal */
.copyright {
  color: #666;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.legal-links {
  color: #666;
  font-size: 0.75rem;
}

.legal-link {
  color: #888;
  text-decoration: none;
  transition: 0.3s;
  letter-spacing: 1px;
}

.legal-link:hover {
  color: var(--primary);
}

/* ====================
   RESPONSIVE FOOTER
   ==================== */

@media (max-width: 768px) {
  .footer {
    padding: 10px 0 !important;
  }

  .footer-brand {
    font-size: 2rem;
  }

  .footer-nav .nav-links {
    gap: 15px;
    justify-content: center;
  }

  .footer-nav .nav-links a {
    font-size: 0.7rem;
    margin: 0 8px;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .contact-item {
    margin: 5px 0 !important;
  }
}

@media (max-width: 576px) {
  .footer-nav .nav-links {
    flex-direction: column;
    gap: 15px;
  }

  .social-links {
    gap: 15px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .legal-links span {
    display: none;
  }

  .copyright {
    font-size: 0.7rem;
    line-height: 1.5;
  }
}

@media (max-width: 360px) {
  .footer-brand {
    font-size: 1.8rem;
  }

  .social-links {
    flex-wrap: wrap;
  }
}

/* === FLOATING WHATSAPP BUTTON === */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #fbff00;
  color: #666666;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(201, 169, 110, 0.45);
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(201, 169, 110, 0.6);
}

/* Pulse Effect */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 28px;
    bottom: 20px;
    right: 20px;
  }
}
